home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows News 2005 November
/
WNnov2005.iso
/
Windows
/
Indispensables
/
Movie Collection
/
MovieCollection5403.exe
/
{app}
/
web
/
FreeBrowser
/
films.xsl
< prev
next >
Wrap
Extensible Markup Language
|
2005-08-03
|
1KB
|
42 lines
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" media-type="text/html; charset=ISO-8859-1"/>
<xsl:template match="/">
<html>
<body>
<a href="/mc">Nouvelle recherche</a> - RΘsultat de la recherche: <xsl:value-of select="count(//films/film)"/> film(s) trouvΘ(s).
<hr noshade="1" />
<div>
<xsl:apply-templates select="//films"/>
</div>
<hr noshade="1" />
<a href="/mc">Nouvelle recherche</a>
</body>
</html>
</xsl:template>
<xsl:template match="//films">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<xsl:for-each select="film">
<tr>
<td>
<a>
<xsl:attribute name="href">../mc?action=film&idx=<xsl:value-of select="@idx"/></xsl:attribute>
<xsl:value-of select="@nom"/>
</a>
</td>
<td>
<xsl:value-of select="@ref"/>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>